From d5c36c62ed3a0763399fd9fc3bdcd3a9fce166c5 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Wed, 9 Oct 2013 11:57:42 -0400 Subject: [PATCH] GtkSearchBar: replace incomplete example with a real one https://bugzilla.gnome.org/show_bug.cgi?id=709745 --- gtk/gtksearchbar.c | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/gtk/gtksearchbar.c b/gtk/gtksearchbar.c index bf5f2a969d..417bc46ff8 100644 --- a/gtk/gtksearchbar.c +++ b/gtk/gtksearchbar.c @@ -58,21 +58,11 @@ * * * Creating a search bar - * * Create a box for the search entry and related widgets *<---->/ - * entry = gtk_search_entry_new (); - * box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); - * gtk_box_pack_start (GTK_BOX (box), entry, TRUE, TRUE, 0); - * /* Add a menu button to select the category of the search *<---->/ - * menu_button = gtk_menu_button_new (); - * gtk_box_pack_start (GTK_BOX (box), menu_button, FALSE, FALSE, 0); - * gtk_container_add (GTK_CONTAINER (searchbar), box); - * - * /* And tell the search bar about the search entry *<---->/ - * gtk_search_bar_connect_entry (GTK_SEARCH_BAR (bar), entry); - * ]]> + * + * + * FIXME: MISSING XINCLUDE CONTENT + * + * * * * Since: 3.10 -- 2.30.2